bhd-components 0.11.18 → 0.11.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -16365,6 +16365,9 @@ var Footer = /*#__PURE__*/ forwardRef(function(props, ref) {
16365
16365
  setDisabled: function(flag) {
16366
16366
  setIsDisabled(flag);
16367
16367
  },
16368
+ getDisabled: function() {
16369
+ return recordDisabled.current;
16370
+ },
16368
16371
  setIsFocus: setIsFocus
16369
16372
  }, fileListRef.current || {});
16370
16373
  });
@@ -16445,6 +16448,9 @@ var Footer = /*#__PURE__*/ forwardRef(function(props, ref) {
16445
16448
  if (!fileCanSending) {
16446
16449
  flag = false;
16447
16450
  }
16451
+ if (recordDisabled.current) {
16452
+ flag = false;
16453
+ }
16448
16454
  canSendMsgRef.current = flag;
16449
16455
  return flag;
16450
16456
  }, [
@@ -16468,7 +16474,7 @@ var Footer = /*#__PURE__*/ forwardRef(function(props, ref) {
16468
16474
  var renderBtn = function() {
16469
16475
  var sendNode = /*#__PURE__*/ jsx(SendBtn$1, {
16470
16476
  prefix: prefix,
16471
- canSendMsg: canSendMsg && !isDisabled,
16477
+ canSendMsg: canSendMsg,
16472
16478
  sending: sending,
16473
16479
  canStopMessage: canStopMessage,
16474
16480
  stopMessage: function() {